上次說到這篇我們要來介紹while不同的操作
我們先來介紹第一個else
用else可以讓你知道你的結果已經不符合條件了
例如今天帶了100員只能買10顆糖果
i = 1
while i < 11:
print(i)
i += 1
else:
print('Your money is not enough.')
```![https://ithelp.ithome.com.tw/upload/images/20220917/201519381L2Aot2jma.jpg](https://ithelp.ithome.com.tw/upload/images/20220917/201519381L2Aot2jma.jpg)
接下來來介紹第二個**break**
學過C/C++的都知道,這代表跳出迴圈,只要在迴圈內碰到它,就會立馬跳出
例如
i = 1
while True:
print(i)
i += 1
if i % 5 == 0
break
print('This number is a multiple of five')
![https://ithelp.ithome.com.tw/upload/images/20220917/20151938MjVNi9Ggh4.jpg](https://ithelp.ithome.com.tw/upload/images/20220917/20151938MjVNi9Ggh4.jpg)